forked from AlgorithmHub/finishline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.39 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
from setuptools import setup
def readme():
with open('README.rst') as readme_file:
return readme_file.read()
configuration = {
'name' : 'finishline',
'version': '0.3.0',
'description' : 'Framework for Building Beautiful and Functional Dashbords',
'long_description' : readme(),
'classifiers' : [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3 :: Only',
],
'keywords' : 'dash dashboard ui grid layout',
'url' : 'http://github.com/AlgorithmHub/finishline',
'maintainer' : 'Alex Cabello',
'maintainer_email' : '[email protected]',
'license' : 'MIT',
'packages' : ['finishline'],
'install_requires': ['dash >= 0.42.0',
'dash-responsive-grid-layout >= 0.3.0',
'dash-building-blocks >= 0.1.2'],
'ext_modules' : [],
'cmdclass' : {},
'test_suite' : '',
'tests_require' : [],
'data_files' : ()
}
setup(**configuration)