-
Notifications
You must be signed in to change notification settings - Fork 75
/
setup.py
executable file
·35 lines (32 loc) · 1.09 KB
/
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
30
31
32
33
34
35
from setuptools import setup
# read the contents of the README file so that PyPI can use it as the long description
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
modules_list = [
"pypdb",
"pypdb.util",
"pypdb.clients",
"pypdb.clients.search",
"pypdb.clients.search.operators",
"pypdb.clients.data",
"pypdb.clients.data.graphql",
"pypdb.clients.fasta",
"pypdb.clients.pdb",
]
setup(
name='pypdb',
packages=modules_list, # same as 'name'
py_modules=modules_list,
version='2.04',
install_requires=['requests'],
description='A Python wrapper for the RCSB Protein Data Bank (PDB) API',
author='William Gilpin',
author_email='[email protected]',
url='https://github.com/williamgilpin/pypdb',
download_url='https://github.com/williamgilpin/pypdb/tarball/0.6',
keywords=['protein', 'data', 'RESTful', 'api'],
classifiers=[],
long_description=long_description,
long_description_content_type='text/markdown'
)