forked from Marchowes/pyProm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 755 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 755 Bytes
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
from distutils.core import setup
from pyprom import __version__, __doc__
with open('requirements.txt') as f:
requires = [line.strip() for line in f if line.strip()]
with open('test-requirements.txt') as f:
tests_requires = [line.strip() for line in f if line.strip()]
setup(
name='pyProm',
version=__version__,
keywords=['pyProm'],
long_description=__doc__,
description='Surface Network analysis.',
author='Marc Howes',
author_email='marc.h.howes@gmail.com',
url='https://github.com/marchowes/pyProm',
packages=['pyprom'],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
install_requires=requires,
tests_require=tests_requires,
)