-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
25 lines (23 loc) · 957 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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='pyloghub',
version='0.1.5',
packages=find_packages(),
description='The `pyloghub` package provides convinient access to various Log-hub API services for Supply Chain Visualization, Network Design Optimization, and Transport Optimization as well as access to the Log-hub platform data.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/log-hub/log-hub-python',
author='Log-hub AG',
author_email='[email protected]',
license='MIT',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
install_requires=required,
package_data={'pyloghub': ['sample_data/*.xlsx']},
include_package_data=True,
)