forked from modelplot/modelplotpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (31 loc) · 1007 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
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
import setuptools
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
with open('LICENSE') as license_file:
licence = license_file.read()
#requirements = [ ]
#setup_requirements = ['pytest-runner', ]
#test_requirements = ['pytest', ]
setuptools.setup(
name='modelplotpy',
author="Pieter Marcus",
author_email='pb.marcus@hotmail.com',
description="Build nice model plots",
# install_requires=requirements,
license=licence,
long_description=readme + '\n\n' + history,
# include_package_data=True,
# keywords='modelplotpy',
packages=setuptools.find_packages(),
# setup_requires=setup_requirements,
# test_suite='tests',
# tests_require=test_requirements,
url='https://github.com/pbmarcus/modelplotpy',
# zip_safe=False,
version='1.0.0'
)