-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (38 loc) · 1.33 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
# ! important
# see https://stackoverflow.com/a/27868004/1497139
from setuptools import setup
from collections import OrderedDict
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='eitparser',
version='0.0.1',
packages=['eit',],
author='Wolfgang Fahl',
author_email='wf@bitplan.com',
maintainer='Wolfgang Fahl',
url='https://github.com/WolfgangFahl/eitparser',
project_urls=OrderedDict(
(
("Documentation", "http://wiki.bitplan.com/index.php/Eitparser"),
("Code", "https://github.com/WolfgangFahl/eitparser/blob/main/eit/eitparser.py"),
("Issue tracker", "https://github.com/WolfgangFahl/eitparser/issues"),
)
),
license='GPL',
description='Parser for Event Information Tables',
install_requires=[
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
long_description=long_description,
long_description_content_type='text/markdown'
)