-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (36 loc) · 995 Bytes
/
setup.py
File metadata and controls
42 lines (36 loc) · 995 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
41
42
#!/usr/bin/env python
from setuptools import setup
from register import __VERSION__
DESCRIPTION = (
'Library to read registers from XML and write into xls(Excel), '
'LaTeX, PDF, C header, or Verilog code.'
)
LONG_DESCRIPTION = """\
"""
CLASSIFIERS = [
]
KEYWORDS = (
'xml register sfr xls tex pdf c_header verilog hardware'
)
setup(
name = 'register',
version = __VERSION__,
maintainer = 'Eunchan Kim',
maintainer_email = 'helpbygrace@gmail.com',
url = 'http://bitbucket.org/eunchan/register/',
download_url = 'http://bitbucket.org/eunchan/register/',
description = DESCRIPTION,
long_description = LONG_DESCRIPTION,
license = 'BSD',
platforms = 'Platform Independent',
packages = ['register'],
keywords = KEYWORDS,
classifiers = CLASSIFIERS,
package_data = {
'register': [
'examples/*.*',
],
},
install_requires=['openpyxl'],
test_suite='register.tests',
)