forked from dhaitz/mplcyberpunk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (29 loc) · 1 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
32
33
34
35
36
37
38
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="mplcyberpunk",
url="https://github.com/dhaitz/mplcyberpunk",
license='MIT',
author="Dominik Haitz",
author_email="[email protected]",
description="Add-on for Matplotlib to produce 'Cyberpunk' style plots",
long_description="Add-on for Matplotlib to produce 'Cyberpunk' style plots. See https://github.com/dhaitz/mplcyberpunk",
packages=["mplcyberpunk"],
package_data={
'mplcyberpunk': ['data/*.mplstyle'],
},
install_requires=['matplotlib'],
# Derive version from git. If HEAD is at the tag, the version will be the tag itself.
version_config={
"version_format": "{tag}.dev{sha}",
"starting_version": "v0.0.1"
},
setup_requires=['better-setuptools-git-version'],
classifiers=[
'Framework :: Matplotlib',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
zip_safe=False,
)