-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (35 loc) · 1.27 KB
/
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
36
37
38
39
40
41
# -*- coding: utf-8 -*-
"""
Created on Sun Jun 28 10:37:16 2020
@author: johnvorsten
"""
# Python imports
import setuptools
#%%
with open('README.md', 'r') as f:
long_description = f.read()
short_description = """RPy2 interface to R Package NbClust"""
setuptools.setup(name="nbclust-rpy",
version="0.0.1",
author="John Vorsten",
author_email="[email protected]",
description=short_description,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://https://github.com/johnvorsten/nbclust_rpy",
packages=setuptools.find_packages(),
license='MIT',
keywords='nbclust rpy R clustering',
classifiers=[
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3',
install_requires=[
'rpy2',
'pandas',
'numpy',
])