-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.19 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 1.19 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
CURRENT_VERSION = '0.2.2-post3'
setup(
name='pysvg-py3',
version=CURRENT_VERSION,
description='Python 3 portage of pysvg',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author='Kerim Mansour',
author_email='',
url='https://github.com/alorence/pysvg-py3',
packages=find_packages(),
# Files included in sdist (using MANIFEST.in) will also be included in bdist*
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Multimedia :: Graphics",
]
)