-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (22 loc) · 826 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="eqsormo",
version="0.8.5",
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=["statsmodels", "tqdm", "numpy", "pandas", "dill", "scipy",],
author="Matthew Wigginton Conway",
author_email="[email protected]",
description="Equilibrium sorting models in Python",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/mattwigway/eqsormo",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
],
)