-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (24 loc) · 834 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (24 loc) · 834 Bytes
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
from setuptools import setup
with open("README.md","r") as fh:
long_description = fh.read()
setup(
name='inverted_encoding',
version='0.2.3',
description='Implementation of inverted encoding model as described in Scotti, Chen, & Golomb',
packages=['inverted_encoding'],
url="https://github.com/paulscotti/inverted_encoding",
author="Paul S. Scotti",
author_email="scottibrain@gmail.com",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires = [
"numpy"],
)
# pip3 install check-manifest twine
# pip3 install -e .
# python setup.py bdist_wheel sdist
# check-manifest --c
# git add MANIFEST.in
# twine upload --skip-existing dist/*
# or try cookiecutter
# tutorial on publishing python packages: www.youtube.com/watch?v=GIF3LaRqgXo