-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.31 KB
/
setup.py
File metadata and controls
49 lines (45 loc) · 1.31 KB
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read().strip()
setup(
name='genesapi_pipeline',
version='0.9',
description='The data pipeline to turn tables from GENESIS into a graphql api',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Utilities'
],
url='https://github.com/datenguide/genesapi-pipeline',
author='Simon Wörpel',
author_email='simon.woerpel@medienrevolte.de',
license='MIT',
packages=['genesapi'],
entry_points={
'console_scripts': [
'genesapi=genesapi.entry:main'
]
},
install_requires=[
'pandas',
'pyyaml',
'python-frontmatter',
'awesome-slugify',
'zeep',
'regenesis',
'python-dateutil',
'elasticsearch'
],
# FIXME see README.md about regenesis install note
# dependency_links=[
# 'https://github.com/datenguide/regenesis/tarball/master#egg=regenesis-0.1'
# ],
zip_safe=False
)