-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
34 lines (28 loc) · 911 Bytes
/
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
# -*- coding: utf-8 -*-
from os import path
from setuptools import setup
VERSION = (0, 1, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
long_description = ''
f = open(path.join(path.dirname(__file__), 'README.md'))
long_description = f.read().strip()
f.close()
setup(
name='prahounakole',
description="Django aplikace cyklistická mapa Městem na kole http://mapa.prahounakole.cz/",
url="http://github.com/auto-mat/prahounakole",
long_description=long_description,
version=__versionstr__,
author="Auto*Mat",
author_email="[email protected]",
license="BSD",
packages=['cyklomapa', 'pnk'],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
],
)