forked from klen/django-netauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (30 loc) · 1.03 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
import os
from setuptools import setup, find_packages
from netauth import VERSION, PROJECT, LICENSE
MODULE_NAME = 'netauth'
PACKAGE_DATA = list()
for directory in [ 'templates', 'static' ]:
for root, dirs, files in os.walk( os.path.join( MODULE_NAME, directory )):
for filename in files:
PACKAGE_DATA.append("%s/%s" % ( root[len(MODULE_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=LICENSE,
author = "Kirill Klenov",
author_email = "[email protected]",
url = "http://github.com/klen/django-netauth.git",
keywords= 'auth django social',
packages = find_packages(),
package_data = { '': PACKAGE_DATA, },
install_requires = [ 'python-openid', 'oauth2' ],
)
if __name__ == "__main__":
setup( **META_DATA )