-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (33 loc) · 1.09 KB
/
setup.py
File metadata and controls
41 lines (33 loc) · 1.09 KB
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
# References:
# - https://stackoverflow.com/questions/27494758/how-do-i-make-a-python-script-executable
import os
from setuptools import setup, find_packages
files = ["samples/*/*", "languages/*/*.yaml"]
# with open('requirements.txt') as f:
# _required = f.read().splitlines()
# required = []
# for line in _required:
# required.append(line.split('==', 1)[0])
setup(
name='universalpython',
version='0.1.0',
author='Saad Bazaz',
author_email='saadbazaz@hotmail.com',
url='https://github.com/UniversalPython/UniversalPython',
install_requires=[
"ply",
"PyYAML",
"Unidecode",
],
# packages=['urdupython', 'modes', 'filters', 'languages'],
packages=find_packages(),
package_data = {'universalpython' : files },
entry_points={
'console_scripts': [
'universalpython=universalpython.universalpython:main',
# 'urdupython=urdupython.urdu_python:main',
# 'اردوپایتھان=urdupython.urdu_python:main',
# 'اردوپای=urdupython.urdu_python:main'
]
}
)