-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
57 lines (55 loc) · 1.55 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
from setuptools import setup
packages = [
"appdirs",
"asteval",
"bw2analyzer<0.10.99",
"bw2calc==1.8.2",
"bw2data==3.6.6",
"bw2io==0.8.12",
"bw2parameters>=0.6.5",
"docopt",
"eight",
"flask",
"future",
"lxml",
"numpy<2",
"peewee>=3.0",
"psutil",
"pyprind",
"requests",
"scipy",
"stats_arrays>=0.6.5",
"unicodecsv",
"voluptuous",
"whoosh",
"xlrd",
"xlsxwriter",
]
setup(
name='brightway2',
version="2.4.7",
packages=["brightway2"],
author="Chris Mutel",
author_email="cmutel@gmail.com",
license=open('LICENSE.txt').read(),
install_requires=packages,
url="https://github.com/brightway-lca/brightway2",
long_description=open('README.md', encoding="utf-8").read(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Visualization',
],
)