-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (40 loc) · 1.3 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
import os
from setuptools import setup, find_packages
dir_path = os.path.dirname(os.path.realpath(__file__))
VERSION = open(os.path.join(dir_path, 'VERSION')).read()
setup(
name = 'sitemapper',
packages = ['sitemapper'],
version = VERSION,
description = '''
A tool for generating xml sitemaps from a list of urls.
''',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author = 'Marco Montagna',
author_email = 'marcojoemontagna@gmail.com',
url = 'https://github.com/mmontagna/sitemapper',
keywords = ['sitemaps', 'sitemap index', 'sitemap generator'],
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
),
data_files = [('', ['LICENSE', 'VERSION'])],
include_package_data=True,
python_requires=">=2.7",
license=open(os.path.join(dir_path, 'LICENSE')).read(),
install_requires=[
],
entry_points = {
'console_scripts': [
'sitemapper=sitemapper.__main__:main'
]
},
)