forked from capn-freako/PyAMI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.41 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
39
40
41
42
43
44
45
46
47
48
""" setup.py - Distutils setup file for PyIBIS-AMI package
David Banas
"""
from setuptools import setup, find_packages
setup(
name="PyIBIS-AMI",
version="3.3.3rc1",
packages=find_packages(exclude=["docs", "tests"]),
include_package_data=True,
description="Facilitates working directly with IBIS-AMI DLLs from the Python command prompt.",
install_requires=[
"click",
"empy",
"numpy",
"scipy",
"matplotlib",
"parsec",
"traits",
"traitsui",
],
entry_points={
"console_scripts": [
"ami-config = pyibisami.ami_config:main",
"run-tests = pyibisami.run_tests:main",
]
},
license="BSD",
long_description=open("README.md").read(),
url="https://github.com/capn-freako/PyAMI/wiki",
author="David Banas",
author_email="[email protected]",
keywords=["ibis-ami"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: System :: Emulators",
"Topic :: Utilities",
],
)