forked from santhoshtr/silpa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 799 Bytes
/
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
import sys
import os
import datetime
from setuptools import setup, find_packages
name='silpa'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description=(
read('README')
+ '\n'
)
setup(
name=name,
version=datetime.datetime.now().strftime("%Y%m%d"),
url='http://smc.org.in/silpa',
license='AGPL 3.0',
description='Indic Language Computing Library',
author='Santhosh Thottingal',
author_email='[email protected]',
long_description=long_description,
include_package_data=True,
packages=find_packages('src'),
package_dir = {'': 'src'},
package_data = {'': ['doc']},
namespace_packages=['silpa'],
install_requires=['setuptools'],
zip_safe = True,
)