-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
43 lines (39 loc) · 1.11 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
import os
from setuptools import setup, find_packages
setup(
name = "djtracker",
version = "0.3.6",
author = "Mark Rogers",
author_email = "[email protected]",
url = "http://www.f4ntasmic.com",
packages = find_packages('.'),
package_dir = {'':'.'},
data_files=[('.', ['README.rst','MANIFEST.in']),],
package_data = {
'djtracker':
['templates/*.html',
'templates/*.css',
'templates/*.js',
'templates/djtracker/*.html',
'templates/djtracker/*.js',
'templates/djtracker/*.css',
'templates/registration/*',
'templates/djtracker/blocks/*',
'templates/djtracker/mail/*',
'fixtures/*.json',
],
},
include_package_data=True,
license = "BSD License",
keywords = "django issue tracker",
description = "An issue tracker built with django",
install_requires=[
'gitpython',
'django-registration',
],
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
'Programming Language :: Python',
]
)