File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55# # pycharm
66.idea
77
8+ # # directory for packaging, etc
9+ build /
10+ dist /
11+ adhoc.egg-info /
12+ adhoc /__pycache__ /
13+ test /__pycache__ /
14+
15+ # # jupyter checkpoints
16+ .ipynb_checkpoints /
17+ notebooks /.ipynb_checkpoints /
18+
819# # exported notebook
920notebooks /* .html
Original file line number Diff line number Diff line change @@ -13,3 +13,5 @@ script:
1313 - python -m unittest test/test_processing.py
1414 - python -m unittest test/test_utilities.py
1515 - python -m unittest test/test_modeling.py
16+ - python setup.py sdist bdist_wheel
17+ - pip install dist/adhoc-0.1-py3-none-any.whl
Original file line number Diff line number Diff line change 1+ from setuptools import setup
2+
3+ setup (
4+ name = "adhoc" ,
5+ version = "0.1" ,
6+ description = "Module for ad hoc analysis" ,
7+ url = "https://github.com/stdiff/adhoc" ,
8+ author = "Hironori Sakai" ,
9+ author_email = "crescent.lab@gmail.com" ,
10+ license = "MIT" ,
11+ packages = ["adhoc" ],
12+ python_requires = ">=3.5" ,
13+ install_requires = ["numpy>=1.16.4" ,
14+ "pandas>=0.23.4" ,
15+ "scipy>=1.2.0" ,
16+ "matplotlib>=3.0.2" ,
17+ "seaborn>=0.9.0" ,
18+ "scikit-learn>=0.21.3" ,
19+ "pydot>=1.4.1" ,
20+ "jupyter>=1.0.0"
21+ ],
22+ zip_safe = False
23+ )
You can’t perform that action at this time.
0 commit comments