-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (51 loc) · 1.75 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
# -*- coding: utf-8 -*-
# versions
import codecs
import os
import setuptools
__version__ = os.environ.get('VERSION_NEW', '1.0.4')
# requirements
try:
with open('requirements.txt') as f:
reqs = f.read().splitlines()
except FileNotFoundError:
reqs = []
# description
with codecs.open("README.md", "r", encoding="UTF-8") as fh:
long_description = fh.read()
setuptools.setup(
name='uncover_json_writer',
version=__version__,
author=u'Martin Beneš',
author_email='martinbenes1996@gmail.com',
description='JSON Writer for an Uncover tool.',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
license='MIT',
url={
"Source": 'https://github.com/uibk-uncover/tool_json_writer',
},
keywords=['json', 'format', 'output', 'compatibility'],
install_requires=reqs,
package_dir={'': '.'},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Legal Industry',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Communications',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Image Processing',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
)