-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
47 lines (44 loc) · 1.51 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
import sys
from dash_building_blocks import __version__
from setuptools import setup
def readme():
with open('README.md') as readme_file:
return readme_file.read()
configuration = {
'name' : 'dash_building_blocks',
'version': __version__,
'description' : 'Lightweight Auxiliary Framework for Writing Object-Oriented Dash Code.',
'long_description' : readme(),
'long_description_content_type' : 'text/markdown',
'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 object-oriented-programming',
'url' : 'http://github.com/AlgorithmHub/dash_buildin_blocks',
'maintainer' : 'Marco de Lannoy Kobayashi',
'maintainer_email' : '[email protected]',
'license' : 'MIT',
'packages' : ['dash_building_blocks'],
'install_requires': [
'dash >= 0.22.0',
'dash-html-components',
'dash-core-components'
],
'ext_modules' : [],
'cmdclass' : {},
'test_suite' : 'tests.test_suite',
'tests_require' : [],
'data_files' : ()
}
setup(**configuration)