-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (34 loc) · 999 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
from setuptools import setup, find_packages
import os
version = '0.8.dev0'
shortdesc = ""
longdesc = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(name='metachao',
version=version,
description=shortdesc,
long_description=longdesc,
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
],
keywords='',
author='Florian Friesdorf',
author_email='[email protected]',
url='http://github.com/chaoflow/metachao',
license='BSD license',
namespace_packages=['metachao'],
packages=find_packages('src'),
package_dir = {'': 'src'},
include_package_data=True,
zip_safe=True,
install_requires=[
'setuptools',
],
extras_require={
'test': [
'zope.interface',
],
},
)