forked from badges/pypipins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 923 Bytes
/
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
import os
import sys
from setuptools import setup, find_packages
setup(
name='pypipins',
version='0.0.0',
description='Badges for your site to display download totals, latest version using PyPI https://pypip.in',
# long_description=long_description,
author='Kura',
author_email='[email protected]',
url='https://github.com/badges/pypipins',
packages=find_packages(),
zip_safe=True,
keywords='PyPI badges/pins/shields',
install_requires=[
'Twisted',
'klein',
'requests',
'yarg',
'redis'
],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Natural Language :: English',
'Intended Audience :: Developers',
],
)