-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1.1 KB
/
setup.py
File metadata and controls
32 lines (29 loc) · 1.1 KB
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
# -*- coding: utf-8 -*-
"""
Created on Thu Feb 14 10:20:45 2019
@author: luyao.li
"""
from setuptools import setup
with open('README.md','r') as f:
LONG_DESCRIPTION=f.read()
setup(
name='light_famd',
version='0.0.1',
keywords=['famd','factor analysis'],
description='Light Factor Analysis of Mixed Data',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
packages=['light_famd'],
install_requires=["scikit-learn","scipy","pandas","numpy"],
py_modules=['numbers','math'],
url='https://github.com/Cauchemare/Truncated_FAMD',
author='telescopes',
author_email='luyaoli88@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License ",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Science/Research"])