-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
61 lines (58 loc) · 2.24 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
55
56
57
58
59
60
61
#!/usr/bin/env python
from setuptools import setup, find_packages
exec(open('bicycleparameters/version.py').read())
setup(
name='BicycleParameters',
version=__version__,
author='Jason K. Moore',
author_email='moorepants@gmail.com',
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(),
project_urls={
'Web Application': 'https://bicycle-dynamics.onrender.com',
'Documentation': 'http://bicycleparameters.readthedocs.io',
'Source Code': 'https://github.com/moorepants/BicycleParameters',
'Issue Tracker': 'https://github.com/moorepants/BicycleParameters/issues',
},
include_package_data=True, # includes things in MANIFEST.in
install_requires=[
'DynamicistToolKit>=0.5.3',
'matplotlib>=3.5.1',
'numpy>=1.21.5',
'pyyaml>=5.4.1',
'scipy>=1.8.0',
'uncertainties>=3.1.5',
'yeadon>=1.3.0',
],
python_requires='>=3.8',
extras_require={
'doc': [
'sphinx>=4.3.2',
'numpydoc>=1.2'
],
'app': [
'dash>=2',
'dash-bootstrap-components',
'pandas>=1.3.5'
],
},
entry_points={'console_scripts':
['bicycleparameters = bicycleparameters.app:app.run_server']},
classifiers=['Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'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']
)