Skip to content

Commit e9ea5fc

Browse files
authored
Merge pull request #4 from LukeHartmanTmlt/master
Create setup.py (#1)
2 parents 1da21c8 + 8d57504 commit e9ea5fc

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

setup.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
from setuptools import setup
2+
3+
with open('requirements.txt') as f:
4+
requirements = f.read().splitlines()
5+
6+
setup(
7+
name='private-pgm',
8+
version='0.0.1',
9+
description='Graphical-model based estimation and inference for differential privacy.',
10+
url='[email protected]:ryan112358/private-pgm.git',
11+
author='Ryan McKenna',
12+
author_email='[email protected]',
13+
license='Apache License 2.0',
14+
packages=['mbi'],
15+
package_dir={'': 'src'},
16+
install_requires=requirements,
17+
)

0 commit comments

Comments
 (0)