forked from BoChenGroup/PyDPM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.04 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
32
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
setup(
name='pydpm',
version='2.0.0',
description='A python library focuses on constructing deep probabilistic models on GPU.',
py_modules=['pydpm'],
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Chaojie Wang, Wei Zhao, Jiawen Wu',
author_email='[email protected]',
maintainer='BoChenGroup',
maintainer_email='[email protected]',
license='Apache License Version 2.0',
packages=find_packages(),
# package_data={'pydpm': c_package_data},
# data_files=c_package_data,
include_package_data=True, # include all files
platforms=["Windows", "Linux"],
url='https://github.com/BoChenGroup/Pydpm',
requires=['numpy', 'scipy', 'sklearn', 'pycuda'],
classifiers=[
'Environment :: GPU :: NVIDIA CUDA',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries'
],
)