-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
25 lines (24 loc) · 823 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
from setuptools import setup
setup(
name="getpython3",
version="0.1",
description='Website for porting status of packages to Python 3',
long_description=open('README').read(),
license='Simplified BSD',
author='Baiju M.',
author_email='[email protected]',
url='http://getpython3.net/',
platforms=['linux', 'osx', 'win32'],
py_modules=['py3k'],
install_requires = ['Flask',
'SQLAlchemy',
'Flask-SQLAlchemy',
'Flask-OpenID',
'Flask-Script',
'Flask-Gravatar',
'captchaimage'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python'],
)