File tree Expand file tree Collapse file tree 3 files changed +8
-24
lines changed Expand file tree Collapse file tree 3 files changed +8
-24
lines changed Original file line number Diff line number Diff line change 1
1
pip
2
- bump2version
3
2
wheel
4
3
watchdog
5
4
flake8
8
7
#twine
9
8
pytest
10
9
pandas
11
- pandera [ mypy ]
10
+ pandera
12
11
altair
13
12
sqlmodel
14
13
pyicloud
Original file line number Diff line number Diff line change 1
- pip
2
- bump2version==0.5.11
3
- wheel==0.33.6
4
- watchdog==0.9.0
5
- flake8==3.7.8
6
- tox==3.14.0
7
- coverage==4.5.4
8
- Sphinx==1.8.5
9
- twine==1.14.0
10
-
11
- pytest==6.2.4
12
- black==21.7b0
1
+ jupyterlab
2
+ ipywidgets
3
+ bump2version
4
+ black
Original file line number Diff line number Diff line change 13
13
with open ("requirements.txt" ) as requirements_file :
14
14
requirements = requirements_file .readlines ()
15
15
16
-
17
- dev_requirements = [
18
- "jupyterlab" ,
19
- "ipywidgets" ,
20
- ]
21
-
22
- test_requirements = []
23
-
16
+ with open ("requirements_dev.txt" ) as dev_requirements_file :
17
+ dev_requirements = dev_requirements_file .readlines ()
24
18
25
19
setup (
26
20
author = "Christian Staudt" ,
36
30
"Programming Language :: Python :: 3.9" ,
37
31
],
38
32
description = "Painless business planning for freelancers." ,
39
- install_requires = requirements + test_requirements ,
33
+ install_requires = requirements + dev_requirements ,
40
34
license = "GNU General Public License v3" ,
41
35
long_description = readme + "\n \n " + history ,
42
36
include_package_data = True ,
43
37
keywords = "tuttle" ,
44
38
name = "tuttle" ,
45
39
packages = find_packages (include = ["tuttle" , "tuttle.*" ]),
46
40
test_suite = "tests" ,
47
- tests_require = test_requirements ,
48
41
url = "https://github.com/tuttle-dev/tuttle" ,
49
42
version = "0.0.4" ,
50
43
zip_safe = False ,
You can’t perform that action at this time.
0 commit comments