forked from dantaki/vapeplot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 795 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "vapeplot",
version = "0.0.7",
author = "Danny Antaki",
author_email = "dantaki@ucsd.edu",
description = ("matplotlib extension for vaporwave aesthetics"),
license = "GPLv2",
keywords = "vaporwave matplotlib",
url = "https://github.com/dantaki/vapeplot/",
packages=['vapeplot'],
package_dir={'vapeplot':'vapeplot'},
long_description=read('README.md'),
include_package_data=True,
install_requires=['matplotlib'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Topic :: Multimedia :: Graphics',
],
)