forked from dpinney/omf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (63 loc) · 1.96 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
"""
omf
-----
OMF, the Open Modeling Framework, is a set of Python libraries for simulating
the elctrical grid with an emphasis on cost-benefit analysis of emerging technologies:
distributed generation, storage, networked controls, etc. A web interface is included.
Full documentation is available on our OMF wiki: http://github.com/dpinney/omf/wiki/
"""
from distutils.core import setup
from setuptools import find_packages
setup(
name = 'omf',
version = '0.2',
description = 'An Open Modeling Framework (omf) for power systems simulation.',
long_description = __doc__,
author = 'David Pinney',
author_email = '[email protected]',
# maintainer = '',
# maintainer_email = '',
url = 'http://github.com/dpinney/omf/',
# download_url = 'http://github.com/dpinney/omf/',
packages = find_packages(), # TODO: Fix either project layout or package list.
# py_modules = ['omf'],
# scripts = '',
# ext_modules = '',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: GPLv2',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'],
# distclass = '',
# script_name = '',
# script_args = '',
# options = '',
license = 'GPLv2',
# keywords = [],
platforms = 'any',
# cmdclass = [],
# data_files = [],
# package_dir = {},
## NOTE: the following keywords are from setuptools package.
# include_package_data = True,
# exclude_package_data = {},
# package_data = {},
zip_safe = False,
install_requires = open("requirements.txt").readlines(),
# extras_require = {},
# setup_requires = [],
# dependency_links = '',
# namespace_packages = [],
# test_suite = '',
# tests_require = [],
# test_loader = '',
# eager_resources = [],
# use_2to3 = False,
# convert_2to3_doctests = [],
# use_2to3_fixers = [],
)