-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (35 loc) · 1.08 KB
/
setup.py
File metadata and controls
46 lines (35 loc) · 1.08 KB
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
def readme():
with open('README.md') as f:
return f.read()
setup(
name='Config Handler',
version='0.1.0',
description='Handle config files in your projects the easy way',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/amphinicy/config-handler.git',
licence='MIT',
author='Amphinicy Technologies ltd',
author_email='info@amphinicy.com',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
keywords='config, config-handler, python, json',
packages=find_packages(),
install_requires=[
'click~=7.0',
],
project_urls={
'Source': 'https://github.com/amphinicy/config-handler.git',
},
entry_points={
'console_scripts': [
'config_handler=config_handler.cli:cli'
],
},
)