-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (34 loc) · 1.08 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
34
35
from setuptools import find_packages, setup
setup(
name='pypiup',
version=__import__('pypiup').__version__,
author="Emmanouil Konstantinidis",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
url="https://github.com/manosim/pypiup",
license='BSD',
description="Check whether your PyPI requirements are up to date.",
long_description=open("README.md").read(),
install_requires=[
'click',
'requests',
'semantic_version'
],
entry_points='''
[console_scripts]
pypiup=pypiup.cli:cli
''',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
)