-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 951 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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="gcpds-localbiplot",
version='0.1',
packages=["gcpds", "gcpds.localbiplot"],
author="Jenniffer Carolina Triana Martinez",
author_email="[email protected]",
maintainer="Jenniffer Carolina Triana Martinez",
maintainer_email="[email protected]",
download_url='',
install_requires=[ 'matplotlib', 'numpy', 'pandas', 'seaborn', 'scikit-learn', 'scipy', 'umap-learn'],
scripts=[
],
include_package_data=True,
license='Simplified BSD License',
description="",
zip_safe=False,
long_description=README,
long_description_content_type='text/markdown',
python_requires='>=3.7',
#https://pypi.org/classifiers/
classifiers=[
],
)