-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1006 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 1006 Bytes
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
from setuptools import setup, find_packages
import temp_python
setup(
name='veniq',
version=temp_python.__version__,
description=temp_python.__doc__.strip(),
long_description='Govno',
url='https://github.com/cqfn/veniq.git',
download_url='https://github.com/cqfn/veniq.git',
author=temp_python.__author__,
author_email='yegor256@gmail.com',
license=temp_python.__licence__,
packages=find_packages(),
entry_points={
'console_scripts': [
'temp_python = temp_python.__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'
],
include_package_data=True,
)