forked from echr-od/ECHR-OD_process
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.3 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
from setuptools import setup, find_packages
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='echr_process',
version='1.0.2',
description='European Court of Human Rights OpenData construction process',
long_description=long_description,
long_description_content_type='text/markdown', # Optional (see note above)
url='https://github.com/aquemy/ECHR-OD_process', # Optional
author='Alexandre Quemy',
author_email='[email protected]', # Optional
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
keywords='classification justice prediction',
install_requires=requirements,
project_urls={
'Bug Reports': 'https://github.com/aquemy/ECHR-OD_process/issues',
'Say Thanks!': 'https://saythanks.io/to/aquemy',
'Source': 'https://github.com/aquemy/ECHR-OD_process',
},
)