-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (46 loc) · 1.54 KB
/
setup.py
File metadata and controls
51 lines (46 loc) · 1.54 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
import os
# versions
__version__ = os.environ.get('VERSION_NEW', '0.5.0')
# requirements
try:
with open('requirements.txt') as f:
reqs = f.read().splitlines()
except:
reqs = []
import setuptools
with open("README.md", "r", encoding="UTF-8") as fh:
long_description = fh.read()
setuptools.setup(
name = 'waybackmachine',
version = __version__,
author = u'Martin Beneš',
author_email = 'martinbenes1996@gmail.com',
description = 'Envelope for archive.org API.',
long_description = long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
license='MPL',
project_urls={
"Homepage": "https://pypi.org/project/waybackmachine/",
"Source": 'https://github.com/martinbenes1996/waybackmachine',
},
keywords = ['waybackmachine', 'archive', 'web', 'html', 'webscraping'],
install_requires = reqs,
package_dir={'': '.'},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Other Audience',
'Environment :: Web Environment',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Programming Language :: Python :: 3',
],
)