This repository has been archived by the owner on Jul 1, 2023. It is now read-only.
forked from moorepants/BicycleParameters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (49 loc) · 1.75 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
#!/usr/bin/env python
from setuptools import setup, find_packages
exec(open('bicycleparameters/version.py').read())
setup(
name='BicycleParameters',
version=__version__,
author='Jason Keith Moore',
author_email='[email protected]',
packages=find_packages(),
url='http://pypi.python.org/pypi/BicycleParameters',
license='LICENSE.txt',
description='Generates and manipulates the physical parameters of a bicycle.',
long_description=open('README.rst').read(),
install_requires=[
'DynamicistToolKit>=0.5.3',
'matplotlib>=3.1.2',
'numpy>=1.17.4',
'pyyaml>=5.3.1',
'scipy>=1.3.3',
'uncertainties>=3.1.2',
'yeadon>=1.3.0',
],
python_requires='>=3.6',
extras_require={
'doc': [
'sphinx>=1.8.5',
'numpydoc>=0.7.0'
],
'app': [
'dash>=2',
'dash-bootstrap-components',
'pandas>=0.25.3'
],
},
entry_points={'console_scripts':
['bicycleparameters = bicycleparameters.app:app.run_server']},
classifiers=['Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics']
)