-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (36 loc) · 824 Bytes
/
setup.py
File metadata and controls
41 lines (36 loc) · 824 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
print(find_packages())
setup(
name = 'TNR',
version = '1.2',
description = 'Tensor Network Renormalization',
author = 'Adam S. Jermyn',
author_email = 'adamjermyn@gmail.com',
url = 'https://github.com/adamjermyn/mixer',
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GPLv3 License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'
],
packages = [
'TNR',
'TNR.Contractors',
'TNR.Environment',
'TNR.Examples',
'TNR.Loops',
'TNR.Test',
'TNR.Models',
'TNR.Network',
'TNR.Tensor',
'TNR.Test',
'TNR.Utilities',
'TNR.NetworkTensor',
'TNR.TreeTensor',
'TNR.TensorLoopOptimization'
],
install_requires=['numpy']
)