-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
30 lines (27 loc) · 893 Bytes
/
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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
setup(
name='sylk_parser',
version='0.5',
description='Basic SLK (sylk) to CSV parser',
long_description=README,
long_description_content_type='text/rst',
license='GPLv3',
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Intended Audience :: Developers',
],
author='Majerti',
author_email='[email protected]',
url='https://github.com/majerteam/sylk_parser',
keywords='parser csv slk sylk',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)