-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 772 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 772 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='g2papi',
version='1.0.4',
author='Jordan Safer',
author_email='genomics2proteins@gmail.com',
description='A python client and CLI for easy access to G2P portal APIs',
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"GitHub": "https://www.github.com/broadinstitute/g2papi",
"G2P portal": "https://g2p.broadinstitute.org"
},
packages=find_packages(),
install_requires=[
'requests',
'pandas'
],
entry_points={
'console_scripts': [
'g2papi=g2papi.cli:main',
],
},
)