forked from factorlibre/sinli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 852 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
from setuptools import setup, find_packages
setup(
name="sinli",
version="1.1.5",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"typing-extensions==4.1.1",
"pycountry==17.9.23",
"dataclasses==0.8; python_version < '3.7'",
],
author="Devcontrol",
author_email="[email protected]",
description="Implementation of the SINLI format. It is used in the book sector in Spain to express commercial operations between book sellers, distributors and editors",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
python_requires=">=3.6.9",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
],
)