-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (30 loc) · 993 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
38
39
40
from setuptools import setup, find_packages
requires = [
'stats_arrays>=0.6.4',
'synonym_dict>=0.1.1',
'numpy<2.0'
]
'''
VERSION HISTORY
1.0.5 - 16 June 2024 - re-release for semantic ordering
0.1.1 - 16 June 2024 - improve requirements specification
unclear where the other pypi releases came from... ?? I don't even know how to do a release without twine
1.0.4 - released Apr 09 2021
1.0.3 - released Apr 09 2021
1.0.2 - released Apr 09 2021
0.1.0 - 18 November 2020 - Initial setup
'''
VERSION = '1.0.5'
setup(
name="unit_gears",
version=VERSION,
author="Brandon Kuczenski",
author_email="bkuczenski@ucsb.edu",
license=open('LICENSE').read(),
install_requires=requires,
url="https://github.com/bkuczenski/unit_gears",
summary="A library of uncertain models for the industrial operation of fishing gears",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=find_packages()
)