-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
26 lines (24 loc) · 903 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
import setuptools
#import os
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "readme.md").read_text()
setuptools.setup(
name="pickhardtpayments",
version="0.0.0",
author="Rene Pickhardt",
description="Collection of pythong classes and interfaces to integrate Pickhardt Payments to your applicatoin",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages("pickhardtpayments"),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
# py_modules=["pickhardtpayments"],
package_dir={'': 'pickhardtpayments'},
install_requires=["networkx", "ortools"]
)