-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
53 lines (51 loc) · 1.76 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="mockseries",
version="0.3.1",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
url="http://mockseries.catheu.tech/",
license="BSD",
author="Cyril de Catheu",
author_email="[email protected]",
description="Easy and intuitive generation of synthetic timeseries.",
install_requires=[
"matplotlib==3.7.1",
"numpy==1.26.3",
"scipy==1.11.4",
],
project_urls={
"Bug Tracker": "https://github.com/cyrilou242/mockseries/issues",
"Documentation": "http://mockseries.catheu.tech/",
"Source Code": "https://github.com/cyrilou242/mockseries",
},
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
"Operating System :: OS Independent",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
],
python_requires=">=3.9,<3.13",
entry_points={
"console_scripts": [
"mockseries = mockseries.main:main",
],
},
)