forked from cox-labs/perseuspy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 816 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
import os
HERE = os.path.dirname(__file__)
def read(fname):
return open(os.path.join(HERE, fname)).read()
# creates version_string
exec(open(os.path.join(HERE, "perseuspy", "version.py")).read())
setup(name='perseuspy',
version=version_string, # read from version.py
description='Utilities for integrating python scripts into Perseus workflows',
long_description=read('README.rst'),
url='http://www.github.com/jdrudolph/perseuspy',
author='Jan Rudolph',
author_email='jan.daniel.rudolph@gmail.com',
license='MIT',
packages=find_packages(),
install_requires=['pandas >= 0.24.0', 'networkx >= 2.1'],
test_suite = 'nose.collector',
tests_require= ['nose']
)