forked from FYNCH-BIO/dpu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 816 Bytes
/
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
from setuptools import setup
from codecs import open
# Retrieve dependencies
with open('requirements.txt', 'r') as f:
reqs = f.readlines()
# Retrieve readme
with open('README.md', 'r') as f:
long_desc = f.read()
setup(
name='dpu',
description='Data Processing Unit for eVOLVER.',
long_description=long_desc,
author='Fynch Biosciencese',
author_email='brandon@fynchbio.com',
install_requires=reqs,
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
),
)