-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1000 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="openfertility",
version="0.1.0",
author="Felipe Delestro",
author_email="delestro@gmail.com",
description="Machine learning and data analysis for fertility",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/delestro/openfertility",
packages=find_packages(),
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
],
install_requires=[
"pandas",
"numpy",
"torch",
"torchvision",
"scikit-learn",
"matplotlib",
],
)