-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 672 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 672 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
#
# pypi epubmaker setup
#
from setuptools import setup
from setup_inc import *
setup (
name = 'epubmaker',
version = VERSION,
install_requires = install_requires,
package_dir = package_dir,
packages = pypi_packages,
py_modules = pypi_py_modules,
package_data = pypi_package_data,
scripts = pypi_scripts,
data_files = pypi_data_files,
# metadata for upload to PyPI
author = author,
author_email = author_email,
description = description,
long_description = long_description,
license = license,
keywords = keywords,
url = url,
classifiers = classifiers,
platforms = platforms,
)