-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
20 lines (19 loc) · 806 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(
# Needed to silence warnings (and to be a worthwhile package)
name='indications_curation',
url='https://github.com/timrozday/indications_curation',
author='Tim Rozday',
author_email='[email protected]',
# Needed to actually package something
packages=['indications_curation'],
# Needed for dependencies
install_requires=[],
version='0.1',
# The license can be anything you like
license='Do what you like with it (just nothing evil)',
description='Framework for curating drug labels for disease indications.',
# We will also need a readme eventually (there will be a warning)
long_description='Framework for curating drug labels for disease indications.',
# long_description=open('README.txt').read(),
)