-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 916 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='rowing',
version='0.4.0',
description='Library for analysing a variety of rowing data',
author='Matthew Griffiths',
author_email='matthewghgriffiths@gmail.com',
url='https://github.com/matthewghgriffiths/rowing',
packages=['rowing'],
entry_points={
'console_scripts': []
},
license='MIT',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'numpy==1.25.0',
'scipy==1.11.4',
'pandas==2.0.2',
'matplotlib==3.7.1',
'tqdm==4.65.0',
],
python_requires=">=3.10",
package_data={
'rowing': [
'data/iso_country.json',
'data/flags/*.png',
'data/*'
],
}
)