forked from jamesra/dm4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (34 loc) · 1.19 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
44
45
46
47
48
49
50
51
'''
Created on July 30th, 2015
@author: James Anderson
'''
import glob
import os
from setuptools import setup, find_packages
from ez_setup import use_setuptools
# This if test prevents an infinite recursion running tests from "python setup.py test"
if __name__ == '__main__':
use_setuptools()
install_requires = []
packages = find_packages()
provides = ["dm4reader"]
dependency_links = []
package_dir = {'dm4reader' : 'dm4reader'}
#scripts = glob.glob(os.path.join('scripts', '*.py'))
#cmdFiles = glob.glob(os.path.join('scripts', '*.cmd'))
#scripts.extend(cmdFiles)
#entry_points = {'console_scripts': ['dmdumptags = dmreader.build:Execute']}
setup(name='dm4reader',
zip_safe=True,
version='1.0.0',
#scripts=scripts,
description="Digital Micrograph 4 file reader",
author="James Anderson",
author_email="[email protected]",
url="https://nornir.github.io/",
packages=packages,
#entry_points=entry_points,
install_requires=install_requires,
provides=provides,
test_suite="test",
dependency_links=dependency_links)