-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (33 loc) · 1014 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (33 loc) · 1014 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import phenopy
setup(
name = 'phenopy',
version = phenopy.__version__,
url = '',
download_url = '',
license = phenopy.__license__,
author = 'Dmitry Zuikov',
author_email = 'dmz@phenopy.net',
description = 'Misc stuffs',
long_description = phenopy.__doc__,
keywords = 'wsgi web sql postgres aop',
packages = ['phenopy',
'phenopy.aop',
'phenopy.decorators',
'phenopy.misc',
'phenopy.sql',
'phenopy.webutils',
'phenopy.webutils.xslt',
'phenopy.webutils.xml',
'phenopy.xml_tools'],
platforms = 'any',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'License :: OSI Approved :: %s' % phenopy.__license__,
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)