-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 737 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(
name = 'django-sync-google-contacts',
packages = ['sync_google_contacts'],
version = '0.1',
#include_package_data=True,
package_data = {
# If any package contains *.txt or *.rst files, include them:
'sync_google_contacts': [
'templates/*',
'static/sync_google_contacts/*',
],
},
description = 'Manage groups and user via jtable',
author = 'Erwin Sprengers',
author_email = 'sprengee54@gmail.com',
url = 'http://pypi.python.org/pypi//django-sync-google-contacts', # use the URL to the github repo
keywords = ['django', 'admin', 'google', 'contacts', ], # arbitrary keywords
classifiers = [],
)