-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (31 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
from setuptools import setup
setup(
name='lifepim',
version='0.0.3',
author='Duncan Murray',
author_email='djmurray@acutesoftware.com.au',
packages=['lifepim', 'lifepim.web_app'],
url='https://github.com/acutesoftware/lifepim',
license='GNU General Public License v3 (GPLv3)',
description='Personal Information Manager for Life',
long_description=open('README.txt').read(),
install_requires=[
'nose >= 1.0',
'AIKIF >= 0.1.3',
'flask >= 0.10.1',
'flask-httpauth >= 2.3.0',
'flask-restful >= 0.3.1'
],
classifiers = [
'Development Status :: 1 - Planning',
'Environment :: Web Environment',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Office/Business :: News/Diary',
],
)