-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.06 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.06 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
35
36
37
38
39
from setuptools import setup,find_packages
# Read the text files
with open('README.md', 'r') as f:
README = f.read()
with open('VERSION', 'r') as f:
VERSION = f.read()
#with open("CHANGELOG.md", 'r') as f:
# CHANGELOG = f.read()
# This call to setup() does all the work
setup(
name="simwrapper",
version=VERSION,
description="Python support library for SimWrapper data visualization tool",
url="https://github.com/simwrapper/simwrapper-python-tools",
author="Billy Charlton",
license="GPLv3",
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3",
],
packages=find_packages(),
install_requires=[
"Click",
],
include_package_data=True,
extras_require = {
},
tests_require=["assertpy", "pytest"],
entry_points={
'console_scripts': [
'simwrapper = simwrapper.cli:cli'
]
},
long_description_content_type="text/markdown",
long_description=README
)