-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (34 loc) · 1.05 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
#!/usr/bin/env python
import setuptools
import eptransition
setuptools.setup(
name='eptransition',
version=eptransition.__version__,
description='EnergyPlus file transition in Python.',
long_description=open('README.rst').read(),
url='https://github.com/myoldmopar/ep-transition',
author='Edwin Lee',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
keywords='cli energyplus',
packages=setuptools.find_packages(exclude=['test', 'test.*', '.tox']),
include_package_data=True,
install_requires=['pyiddidf==0.5'],
extras_require={
'test': ['coverage', 'unittest', 'coveralls'],
},
entry_points={
'console_scripts': [
'eptransition=eptransition.transition:main',
],
},
test_suite='nose.collector',
tests_require=['nose'],
)