forked from DeepVAC/deepvac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.1 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
33
34
35
36
37
38
39
40
41
42
43
import setuptools
import sys
def readme():
with open('README.md') as f:
return f.read()
def version():
with open('deepvac/version.py') as f:
version_cmd = f.read()
loc = {}
exec(version_cmd.strip(),globals(), loc)
return loc['__version__']
version=version()
print("You are building deepvac with version: {}".format(version))
setuptools.setup(name='deepvac',
version=version,
description='PyTorch python project standard',
long_description='PyTorch python project standard',
keywords='PyTorch python project standard',
url='https://github.com/DeepVAC/deepvac',
download_url="",
author='Gemfield',
author_email='[email protected]',
packages=setuptools.find_packages(),
include_package_data=True,
package_dir={
'deepvac': 'deepvac',
},
install_requires=[
'opencv_python',
'numpy',
'Pillow',
'scipy',
'tensorboard'
],
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries"
],
zip_safe=False)