We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1da21c8 + 8d57504 commit e9ea5fcCopy full SHA for e9ea5fc
setup.py
@@ -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='git@github.com:ryan112358/private-pgm.git',
11
+ author='Ryan McKenna',
12
+ author_email='rmckenna21@gmail.com',
13
+ license='Apache License 2.0',
14
+ packages=['mbi'],
15
+ package_dir={'': 'src'},
16
+ install_requires=requirements,
17
+)
0 commit comments