forked from remorses/mongoke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 929 Bytes
/
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
from setuptools import setup
NAME = 'mongoke'
setup(
name=NAME,
# [bump]
version='1.4.3',
description=NAME,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Tommaso De Rossi',
author_email='[email protected]',
license='Apache Software License 2.0',
url=f'https://github.com/remorses/{NAME}',
keywords=['TODO'],
install_requires=[x for x in open('./requirements.txt').read().strip().split('\n') if x.strip()],
package_data={'': ['*.yaml', '*.json', '*.yml', 'VERSION', 'README.md', 'requirements.txt']},
classifiers=[
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=['mongoke', 'mongoke.templates', ],
scripts=[
'bin/mongoke'
]
)