-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·45 lines (42 loc) · 1.68 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
from imp import load_source
from setuptools import setup
tessera_version = load_source("version", "tessera/version.py")
setup(
name="git-tessera",
version=tessera_version.__version__,
license="GPL",
description="git intransic issue tracking",
author="André Roth",
author_email="neolynx@gmail.com",
maintainer="André Roth",
maintainer_email="neolynx@gmail.com",
platforms=["Linux", "Windows", "MAC OS X"],
url="https://github.com/neolynx/git-tessera.git",
download_url="https://github.com/neolynx/git-tessera.git",
install_requires=["gittle", "web.py", "colorful==0.01.02", "markdown"],
packages=["tessera"],
entry_points={"console_scripts": ["git-tessera = tessera.main:main"]},
package_dir={'git-tessera': 'tessera'},
package_data={ "git-tessera": ["config/*", "web/*", "web/style/*"]},
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: Implementation",
"Topic :: Software Development",
"Topic :: Software Development :: Bug Tracking"
],
)