-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 987 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
27
28
29
from setuptools import setup
# Read the version from the VERSION file
with open("VERSION", "r", encoding="utf-8") as version_file:
version = version_file.read().strip()
setup(
name="chartly",
version=version,
author="Elizabeth Consulting International Inc.",
author_email="info@ec-intl.com",
description=("A Python package for chartly multiple plots."),
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/ec-intl/chartly",
project_urls={
"Homepage": "https://github.com/ec-intl/chartly",
"Issues": "https://github.com/ec-intl/chartly/issues",
},
packages=["chartly"],
package_dir={"": "."},
license="Apache License 2.0",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)