Skip to content

Commit e169fc6

Browse files
committed
setup.py init
1 parent 065a928 commit e169fc6

3 files changed

Lines changed: 36 additions & 0 deletions

File tree

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,16 @@ tmp/
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
920
notebooks/*.html

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

setup.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
)

0 commit comments

Comments
 (0)