forked from petervizi/python-eeml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.06 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.06 KB
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
from setuptools import setup
from setuptools import find_packages
import logging, multiprocessing
setup(
name="python-eeml",
version="3.1.0",
author="Peter Vizi",
author_email="peter.vizi@gmail.com",
url="https://github.com/petervizi/python-eeml",
download_url="https://github.com/petervizi/python-eeml/zipball/3.1.0",
description="Python support for the Extended Environments Markup Language",
license="GPLv3",
install_requires = [
'lxml',
],
test_suite = 'nose.collector',
tests_require = [
'nose',
'formencode',
],
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,
)