-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.04 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
from setuptools import setup, find_packages
import cadistributor as mainmodule
with open("README.md", "r") as f:
readme = f.read()
setup(
name='CA Distributor',
version=mainmodule.__version__,
description="CodeAnalytics Distributor",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='codeanalytics research',
author='Ben Klein, Alan Grant',
author_email='[email protected]',
url='https://ca-core.unhexium.dev/',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
"coloredlogs",
"Flask",
"pymongo",
"toml",
"Flask-HTTPAuth",
"gunicorn",
"requests",
"pygit2"
],
entry_points={
'console_scripts': [
'ca-worker=cadistributor.worker:__main__'
]
},
python_requires='>=3.6'
)