-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
55 lines (45 loc) · 1.52 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
52
53
54
#from distutils.core import setup
from setuptools import setup, find_packages
# http://guide.python-distribute.org/quickstart.html
# python setup.py sdist
# python setup.py register
# python setup.py sdist upload
# pip install epub_meta
# pip install epub_meta --upgrade --no-deps
# Manual upload to PypI
# http://pypi.python.org/pypi/epub_meta
# Go to 'edit' link
# Update version and save
# Go to 'files' link and upload the file
VERSION = '0.0.7'
tests_require = [
]
install_requires = [
]
# from pip.req import parse_requirements
# install_requires = parse_requirements('requirements.txt')
# tests_require = parse_requirements('requirements-dev.txt')
setup(name='epub_meta',
url='https://github.com/paulocheque/epub-meta',
author='Pluralsight',
keywords='python epub metadata',
description='',
license='MIT',
classifiers=[
'Operating System :: OS Independent',
'Topic :: Software Development',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
],
version=VERSION,
install_requires=install_requires,
test_suite='tests',
tests_require=tests_require,
extras_require={'test': tests_require},
packages=find_packages(),
)