-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (46 loc) · 1.55 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
56
57
58
from setuptools import setup, find_packages
setup(
# Application name:
name="citableclass",
# Version number (initial):
version="0.0.21",
# Application author details:
author="Gordon Fischer, Malte Vogl",
author_email="[email protected]",
# Packages
packages=find_packages(),
# Include additional files into the package
include_package_data=True,
# Details
url="http://pypi.python.org/pypi/citableclass/",
license="LICENSE.txt",
description="Tool for data request to Edition Topoi",
long_description=open("README.md").read(),
classifiers=[
# How mature is this project?
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Indexing',
# Pick your license as you wish
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
# Specify the Python versions you support here.
'Programming Language :: Python :: 3',
],
project_urls={
'Source': 'https://github.com/TOPOI-DH/citableclass/',
'Tracker': 'https://github.com/TOPOI-DH/citableclass/issues',
},
download_url='https://github.com/TOPOI-DH/citableclass/archive/0.0.21.tar.gz',
python_requires='>=3',
# Dependent packages (distributions)
install_requires=[
"pandas",
"numpy",
"matplotlib",
"requests",
"IPython",
"pyyaml"
]
)