-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (33 loc) · 1.1 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
46
47
#!/usr/bin/python
import os
from setuptools import setup, find_packages
from voter import VERSION, PROJECT
MODULE_NAME = 'django-voter'
PACKAGE_NAME = 'voter'
PACKAGE_DATA = list()
for directory in [ 'templates', 'static', 'locale' ]:
for root, dirs, files in os.walk( os.path.join( PACKAGE_NAME, directory )):
for filename in files:
PACKAGE_DATA.append("%s/%s" % ( root[len(PACKAGE_NAME)+1:], filename ))
def read( fname ):
try:
return open( os.path.join( os.path.dirname( __file__ ), fname ) ).read()
except IOError:
return ''
META_DATA = dict(
name = PROJECT,
version = VERSION,
description = read('DESCRIPTION'),
long_description = read('README.rst'),
license='MIT',
author = "Illia Polosukhin",
author_email = "[email protected]",
url = "http://github.com/ProstoKSI/django-voter.git",
packages = find_packages(),
package_data = { '': PACKAGE_DATA, },
install_requires = [ 'django>=1.2',
'django-misc',
],
)
if __name__ == "__main__":
setup( **META_DATA )