-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 952 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
from setuptools import setup
import pyefa
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(name='pyefa3',
version=pyefa.__version__,
description='Python-Bindings for online train connection APIs.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Nils Martin Klünder, Kai Anter',
author_email='nomoketo@nomoketo.de, kai@anter.dev',
url='https://github.com/Tanikai/pyefa3',
packages=['pyefa'],
license='Apache',
classifiers=[
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: Apache Software License'],
install_requires=['beautifulsoup4', 'colorama', 'lxml'],
)