-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 815 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 815 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
from setuptools import setup, find_packages
with open("README.md", "r") as readme:
long_description = readme.read()
setup(
name='nsaph_utils',
version="0.0.5.11",
url='https://gitlab-int.rc.fas.harvard.edu/rse/francesca_dominici/tools/nsaph_utils',
license='',
author='Ben Sabath',
author_email='sabath@fas.harvard.edu',
description='Common tools and utilities used by NSAPH pipelines and projects',
long_description = long_description,
long_description_content_type = "text/markdown",
#py_modules = [''],
packages=find_packages(),
install_requires=[
'PyYAML',
'rpy2'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: Harvard University :: Development",
"Operating System :: OS Independent"]
)