This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
55 lines (49 loc) · 1.84 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
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
# To update the package version number, edit fdp/__version__.py
version = {}
with open(os.path.join(here, 'fdp', '__version__.py')) as f:
exec(f.read(), version)
with open('requirements.txt', mode='r') as f:
install_requires = f.read().splitlines()
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='fairdatapoint',
version=version['__version__'],
description="Python implementation of FAIR Data Point",
long_description=readme + '\n\n',
long_description_content_type='text/markdown',
author="Rajaram Kaliyaperumal, Arnold Kuzniar, Cunliang Geng, Carlos Martinez-Ortiz",
author_email='[email protected]',
url='https://github.com/fair-data/fairdatapoint',
packages=find_packages(),
include_package_data=True,
license="Apache Software License 2.0",
zip_safe=False,
keywords=['fdp', 'fairdatapoint'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
test_suite='tests',
install_requires=install_requires,
extras_require={
'dev': ['prospector[with_pyroma]', 'yapf', 'isort', 'swagger-ui-bundle>=0.0.2'],
'tests': ['pytest>5.0', 'pytest-cov', 'coveralls', 'pytest-datadir-ng'],
'docs': ['sphinx', 'sphinx_rtd_theme', 'recommonmark'],
},
scripts=[
'bin/fdp-run'
],
)