-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
53 lines (47 loc) · 1.18 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
''' Batch Calculator setup script '''
from setuptools import setup
APP = "batchcalc/zbc.py"
AUTHOR = "Lukasz Mentel"
AUTHOR_EMAIL = "[email protected]"
DESCRIPTION = "Script for calculating batch composition of zeoliteis"
LICENSE = open('LICENSE.txt').read()
NAME = "batchcalc"
URL = "https://bitbucket.org/lukaszmentel/batchcalc"
VERSION = "0.3.1"
YEAR = "2014"
def readme():
with open('README.rst') as txt:
return txt.read()
setup(
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=DESCRIPTION,
license=LICENSE,
name=NAME,
url=URL,
version=VERSION,
entry_points={
'console_scripts': [
'zbc = batchcalc.zbc:main',
],
},
include_package_data=True,
install_requires=[
'numpy>=1.8.1',
'sqlalchemy>=0.9.7',
'jinja2>=2.7.3',
'reportlab',
'wxpython',
'objectlistview',
'six',
],
long_description=readme(),
packages=["batchcalc"],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: MIT',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
],
)