-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
46 lines (40 loc) · 1.57 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
from os import path
import os
here = path.abspath(path.dirname(__file__))
# long description from the README file
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
long_description = read('README.md')
setup(
name='pyconfigstore',
version='1.0.0',
description=(
'A Python module for handling config files. It helps handles persist config files and also giving the ability to set, get, update and delete config settings'
' its based on Configstore.js'
),
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
url='https://github.com/CITGuru/ConfigStore',
classifiers=[
'Development Status :: 1 - Planning',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: User Interfaces',
'Topic :: Software Development :: '
'Libraries :: Application Frameworks',
],
keywords='config, settings, .env, json, settings, configstore',
packages=find_packages(exclude=['docs', 'tests*']),
include_package_data=True,
author='Oyetoke Toby',
download_url='https://github.com/CITGuru/ConfigStore/archive/1.0.0.tar.gz',
install_requires=[],
author_email='[email protected]',
)