-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 738 Bytes
/
setup.py
File metadata and controls
26 lines (21 loc) · 738 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
25
26
from setuptools import setup, find_packages, Extension
with open("README.md","r", encoding = 'utf-8') as fp:
readme = fp.read()
setup(
name="separability_index",
version="0.1.0",
description="A suite of tools to assess the separability of two datasets.",
author="A. Renmin Pretell Ductram, Scott J. Brandenberg",
author_email="rpretell@unr.edu, sjbrandenberg@ucla.edu",
url="https://github.com/RPretellD/separability_index",
long_description=readme,
packages=find_packages(),
include_package_data=True,
install_requires=["numpy"],
license="MIT",
keywords="separability",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
)