-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.13 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, find_packages
import os
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = ''.join(f.readlines())
setup(
name='nanopub_submitter',
version='1.2.0',
keywords='dsw submission document nanopublication',
description='Submission service for publishing nanopublications from DSW',
long_description=long_description,
long_description_content_type='text/markdown',
author='Marek Suchánek',
author_email='[email protected]',
license='Apache2',
packages=find_packages(),
install_requires=[
'fastapi',
'PyYAML',
'rdflib',
'requests',
'SPARQLWrapper',
'uvicorn[standard]',
],
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
],
)