|
| 1 | +from setuptools import setup, find_packages |
| 2 | + |
| 3 | +setup( |
| 4 | + name="apollo", |
| 5 | + description="source{d} Gemini's evil twin which runs everything using Python.", |
| 6 | + version="0.1.0", |
| 7 | + license="Apache 2.0", |
| 8 | + author="source{d}", |
| 9 | + author_email="machine-learning@sourced.tech", |
| 10 | + url="https://github.com/src-d/gemini", |
| 11 | + download_url="https://github.com/src-d/gemini", |
| 12 | + packages=find_packages(exclude=("gemini.tests",)), |
| 13 | + entry_points={ |
| 14 | + "console_scripts": ["gemini=gemini.__main__:main"], |
| 15 | + }, |
| 16 | + keywords=["machine learning on source code", "weighted minhash", "minhash", |
| 17 | + "bblfsh", "babelfish"], |
| 18 | + install_requires=["cassandra_driver >= 3.12.0, <4.0", |
| 19 | + "libMHCUDA >= 1.1.5, <2.0"], |
| 20 | + # "sourcedml >= 0.4.0, <1.0"], |
| 21 | + package_data={"": ["LICENSE", "README.md"]}, |
| 22 | + classifiers=[ |
| 23 | + "Development Status :: 3 - Alpha", |
| 24 | + "Environment :: Console", |
| 25 | + "Intended Audience :: Developers", |
| 26 | + "License :: OSI Approved :: Apache Software License", |
| 27 | + "Operating System :: POSIX", |
| 28 | + "Programming Language :: Python :: 3.4", |
| 29 | + "Programming Language :: Python :: 3.5", |
| 30 | + "Programming Language :: Python :: 3.6", |
| 31 | + "Topic :: Software Development :: Libraries" |
| 32 | + ] |
| 33 | +) |
0 commit comments