forked from Allow2/Allow2python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 796 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='allow2',
version='0.3',
description='OpenSource Parental Freedom Platform',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
'Topic :: Text Processing :: Linguistic',
],
keywords=['parental','controls','time','limit'],
url='http://github.com/Allow2/Allow2python',
author='Allow2',
author_email='ceo@allow2.com',
packages=['allow2'],
install_requires=[
'human_curl',
],
include_package_data=True,
zip_safe=False,
download_url = 'https://github.com/Allow2/Allow2Python/archive/0.3.tar.gz'
)