-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (42 loc) · 1.43 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
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
import os
def getreadme():
with open('README.md', encoding='UTF-8') as readme_file:
return readme_file.read()
def getversion():
"""Fetches version information from VERSION file"""
with open(os.path.join('cdcs', 'VERSION'), encoding='UTF-8') as version_file:
version = version_file.read().strip()
return version
setup(name = 'cdcs',
version = getversion(),
description = 'Python API client for performing REST calls to configurable data curation system (CDCS) databases',
long_description = getreadme(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Physics'
],
keywords = [
'CDCS',
'database',
'rest API',
'configurable data curation system',
],
url = 'https://github.com/usnistgov/pycdcs',
author = 'Lucas Hale',
author_email = '[email protected]',
packages = find_packages(),
install_requires = [
'requests',
'pandas',
'tqdm',
'ipython'
],
package_data={'': ['*']},
zip_safe = False)