-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
40 lines (37 loc) · 1.11 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
34
35
36
37
38
39
40
from setuptools import setup
from setuptools import find_packages
import logging, multiprocessing
VERSION="4.1.0"
setup(
name="python-eeml",
version=VERSION,
author="Peter Vizi",
author_email="[email protected]",
url="https://github.com/petervizi/python-eeml",
download_url="https://github.com/petervizi/python-eeml/zipball/{}".format(VERSION),
description="Python support for the Extended Environments Markup Language",
license="GPLv3",
install_requires = [
'lxml',
],
test_suite = 'nose.collector',
tests_require = [
'nose',
'formencode',
'pytz'
],
zip_safe = False,
include_package_data = True,
packages=find_packages(exclude=['ez_setup', 'tests']),
keywords = [
'eeml', 'environment', 'xml', 'pachube', 'cosm'
],
classifiers = [
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
use_2to3 = True,
)