-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (32 loc) · 1.09 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
from setuptools import setup, find_packages
import veniq
setup(
name='veniq',
version=veniq.__version__,
description=veniq.__doc__.strip(),
long_description='Veniq uses Machine Learning '
'to analyze source code, find possible refactorings, '
'and suggest those that seem optimal',
url='https://github.com/cqfn/veniq',
download_url='https://github.com/cqfn/veniq',
author=veniq.__author__,
author_email=['[email protected]', '[email protected]'],
license=veniq.__licence__,
packages=find_packages(),
entry_points={
'console_scripts': [
'veniq = veniq.__main__:main'
],
},
extras_require={},
install_requires=open('requirements.txt', 'r').readlines(),
tests_require=open('requirements.txt', 'r').readlines(),
classifiers=[
'Programming Language :: Python',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development',
'Topic :: Utilities'
]
)