-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 751 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
#This is a list of files to install, and where
#(relative to the 'root' dir, where setup.py is)
#You could be more specific.
setup(name = "eigprofuc",
version = "0.0.1",
description = "Get difference between any two structures",
author = "XiaoTianLi and ChangChunHe",
author_email = "731176792@qq.com",
#Name the folder where your packages live:
#(If you have other packages (dirs) or modules (py files) then
#put them into the package directory - they will be found
#recursively.)
packages = find_packages(),
install_requires=['numpy>=1.15.4','scipy>=1.1.0','matplotlib>=2.2.2','nose2']
)