-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (52 loc) · 1.44 KB
/
setup.py
File metadata and controls
63 lines (52 loc) · 1.44 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools.command.install import install as _install
class install(_install):
def pre_install_script(self):
pass
def post_install_script(self):
pass
def run(self):
self.pre_install_script()
_install.run(self)
self.post_install_script()
if __name__ == '__main__':
setup(
name = 'NXModToolkit',
version = '1.0.dev0',
description = '',
long_description = '',
long_description_content_type = None,
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python'
],
keywords = '',
author = '',
author_email = '',
maintainer = '',
maintainer_email = '',
license = '',
url = '',
project_urls = {},
scripts = [],
packages = [
'NXModToolkit',
'NXModToolkit.creator',
'NXModToolkit.packager'
],
namespace_packages = [],
py_modules = [],
entry_points = {
'console_scripts': ['nxmodtoolkit = NXModToolkit.__main__:main']
},
data_files = [],
package_data = {},
install_requires = [],
dependency_links = [],
zip_safe = True,
cmdclass = {'install': install},
python_requires = '',
obsoletes = [],
)