-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (24 loc) · 1.02 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
from setuptools import setup, find_packages
#
#NOTE: whenever we publish a new version come in here and bump up the version number first!
# Our version number follows the convention of 3 numbers: MAJOR (new api), MINOR (added functionality), PATCH (bug fix)
#
#pip install -e . to test locally before publishing
#build command: python3 setup.py bdist_wheel sdist
#push to PyPi command: twine upload dist/*
#push to testPyPi command: twine upload --repository testpypi dist/*
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='privugger',
version='0.0.1',
license='Apache license',
author='Raúl Pardo, Mathias Valdbjørn Jørgensen, and Rasmus Carl Rønneberg',
author_email='[email protected]',
description='Privacy risk analysis library for Python programs.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/itu-square/privugger',
#package_dir={"": "privugger"},
packages=find_packages(),
)