-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
51 lines (48 loc) · 1.7 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
# -*- coding: utf-8 -*-
"""
Written by Maksym Neyra-Nesterenko
* Data Exploration and Integration Lab (DEIL)
* Center for Special Business Projects (CSBP)
* Statistics Canada
"""
from setuptools import setup, find_packages
from glob import glob
with open("README.md", 'r') as readme:
long_desc = readme.read()
setup(
name='opentabulate',
version='2.1.1',
description='Tabulates structured data into a mergeable CSV format',
long_description=long_desc,
long_description_content_type='text/markdown',
url='https://github.com/CSBP-CPSE/OpenTabulate',
author='Maksym Neyra-Nesterenko',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Topic :: Text Processing :: General',
'Topic :: Utilities',
'Operating System :: POSIX :: Linux',
'Environment :: Console',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
project_urls={
'Documentation': 'https://opentabulate.readthedocs.io/en/stable/',
'Source code': 'https://github.com/CSBP-CPSE/OpenTabulate/tree/master/opentabulate',
'Bug tracker': 'https://github.com/CSBP-CPSE/OpenTabulate/issues',
'License': 'https://github.com/CSBP-CPSE/OpenTabulate/tree/master/LICENSE.md'
},
python_requires='>=3.5',
test_suite='opentabulate.tests',
packages=find_packages(exclude=['tests']),
include_package_data=True,
package_data={
'opentabulate' : ['share/opentabulate.example.conf']
},
entry_points={
'console_scripts': ['opentab=opentabulate.main.main:main']
}
)