-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.26 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
import pathlib
import orapi
from setuptools import setup
from collections import OrderedDict
here = pathlib.Path(__file__).parent.resolve()
requirements = (here / 'requirements.txt').read_text(encoding='utf-8').split("\n")
setup(name='orapi',
version=orapi.VERSION,
description='python api providing access to openresearch events and event series',
long_description_content_type='text/markdown',
url='https://github.com/tholzheim/orapi',
download_url='https://github.com/tholzheim/orapi',
author='tholzheim',
license='Apache',
project_urls=OrderedDict(
(
("Code", "https://github.com/tholzheim/orapi"),
("Issue tracker", "https://github.com/tholzheim/orapi/issues"),
)
),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
packages=['orapi'],
package_data={'orapi': ['resources/templates/*.jinja','resources/templates/*.html']},
install_requires=requirements,
entry_points={
'console_scripts': [
'orapi = orapi.webserver:main',
],
},
zip_safe=False)