-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (51 loc) · 1.49 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
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='upsetty',
version='0.1.3',
packages=find_packages(),
install_requires=[
'plotly',
'pandas',
'numpy'
],
author='eskin22',
author_email='blakepmcbride@gmail.com',
description='An UpSet plot creation package using Plotly',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/eskin22/upsetty',
download_url='https://pypi.org/project/upsetty/',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Topic :: Scientific/Engineering :: Visualization'
],
keywords=[
'upset',
'upset-plot',
'upsetplot',
'set-interaction',
'set-intersection',
'set-interactions',
'sets',
'plotting',
'visualization',
'data-visualization',
'visualization-tools',
'data-visualization-tools',
'python',
'python3',
'python310',
'pandas',
'plotly'
]
)