forked from amolenaar/roles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (33 loc) · 1013 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
28
29
30
31
32
33
34
35
36
37
38
39
40
"""
Setup script for roles module.
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from contextlib import closing
import glob
VERSION = '0.10'
with closing(open('README.txt')) as f:
doc = f.read()
setup(
name='roles',
version=VERSION,
description='Role based development',
long_description=doc,
author='Arjan Molenaar',
author_email='[email protected]',
url='http://github.com/amolenaar/roles',
license="BSD License",
packages = [ 'roles' ],
keywords="role DCI data context interaction",
platforms=["All"],
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries']
)
#vim:sw=4:et:ai