-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (28 loc) · 1.13 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
# File created following this official tutorial
# https://packaging.python.org/tutorials/packaging-projects/
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="comokit4py", # Replace with your own username
version="0.1.4", # Format : https://www.python.org/dev/peps/pep-0440/
author="COMOKIT",
author_email="[email protected]",
description="Python3 library to simplify the exploration of COMOKIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/COMOKIT/comokit4py",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Environment :: Console",
"Environment :: Plugins",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"Programming Language :: Other",
"Topic :: Scientific/Engineering",
],
python_requires='>=3.6',
)