-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (31 loc) · 1005 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
33
34
#!/usr/bin/python
# -*- coding=utf-8 -*-
from setuptools import setup
# to install type:
# python setup.py install --root=/
from io import open
def readme():
with open('README.rst', encoding="utf8") as f:
return f.read()
setup (name='semawal', version='0.2.2',
description="SemaWal: Semantic Network Resolver",
long_description = readme(),
author='Ali Aouf',
author_email='40uf4l1@gmail.com',
url='https://40uf411.github.io/SemaWal/',
license='GPL',
package_dir={'semawal': 'semawal'},
packages=['semawal'],
install_requires=[
],
include_package_data=True,
package_data = {
'semawal': ['doc/*.*','doc/html/*', 'data/*.sqlite', 'data/*.sql'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
);