-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (34 loc) · 923 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
35
36
from setuptools import setup, find_packages
from Cython.Build import cythonize
from vendor_build import build_py, get_ext_paths
EXCLUDE_FILES = [
]
setup(
name='PenilaianUjianEsaiOtomatis',
author='Lucky, Mufid, Nurindah',
version='0.1.0',
packages=find_packages(),
long_description=open('README.md').read(),
include_package_data=True,
package_data={
'ujian_app': ['static/*', '*.txt'],
},
ext_modules = cythonize(
get_ext_paths('ujian_app', EXCLUDE_FILES),
compiler_directives={'language_level': 3}
),
cmdclass={
'build_py': build_py
},
# installed_reqs=[
# 'celery==4.3.0',
# 'cymysql==0.9.14',
# 'Flask==1.0.3',
# 'Flask-SQLAlchemy==2.4.0',
# 'Flask-Excel==0.0.7',
# 'openpyxl==2.6.2',
# 'pyamqp==0.0.7.3',
# 'PySastrawi==1.2.0',
# 'pyexcel-xlsx==0.5.7',
# ],
)