forked from aclark4life/vanity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 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
from setuptools import setup
import os
VERSION = '2.2.2'
setup(author='Alex Clark',
author_email='[email protected]',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
description='Get package download statistics from PyPI',
entry_points={
'console_scripts': 'vanity=vanity:vanity',
},
include_package_data=True,
install_requires=['requests'],
keywords='analytics python package index statistics',
license='GPL',
long_description=(open('README.rst').read() + '\n' + open(os.path.join(
'CHANGES.rst')).read()),
name='vanity',
py_modules=[
'vanity',
],
test_suite='tests.TestSuite',
url='https://github.com/aclark4life/vanity',
version=VERSION,
zip_safe=True, )