-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 850 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
import os
import setuptools
ROOT = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(ROOT, 'README.rst')).read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setuptools.setup(
name="cmif",
version="2022.11.27",
author="Donatus Herre",
author_email="[email protected]",
license="MIT",
description="Handle data in CMI-format.",
long_description=README,
url="https://github.com/herreio/cmif",
packages=setuptools.find_packages(exclude=("test",)),
include_package_data=True,
install_requires=required,
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License"
],
)