-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 984 Bytes
/
setup.py
File metadata and controls
35 lines (31 loc) · 984 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
26
27
28
29
30
31
32
33
34
35
"""
pyProm: Copyright 2017
This software is distributed under a license that is described in
the LICENSE file that accompanies it.
"""
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',
'pyprom/lib',
'pyprom/lib/locations',
'pyprom/lib/containers',
'pyprom/lib/logic'],
classifiers=[
'Programming Language :: Python :: 3',
],
install_requires=requires,
tests_require=tests_requires,
)