-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.08 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
"""
The setup file_name.
If development mode (=changes in package code directly delivered to python) `pip install -e .` in directory of this file_name
"""
from setuptools import setup
from static_information import *
# https://python-packaging.readthedocs.io/en/latest/minimal.html
with open("README.md", "r") as f:
long_description = f.read()
setup(
name=project_name,
version=version,
description="light-weight support for connecting different python scripts",
long_description=long_description,
long_description_content_type="text/markdown",
url=url,
author=author,
author_email=author_email,
license=packet_license,
packages=["ecoms"],
python_requires=">=3.6",
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
],
# https://pypi.org/pypi?%3Aaction=list_classifiers
# install_requires=[],
)