-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (23 loc) · 908 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
from setuptools import setup
import versioneer
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(name='artistlib',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='aRTist Python library',
url='https://github.com/BAMresearch/aRTist-PythonLib',
author='Carsten Bellon',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
license='Apache 2.0',
packages=['artistlib'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Multimedia :: Graphics :: Graphics Conversion"
],
zip_safe=False)