-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
57 lines (44 loc) · 1.52 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
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, find_packages
__name__ = "kagsa"
__version__ = "1.2.0"
__author__ = "KAGSA PROGRAMMING LANGUAGE"
__author_email__ = "admin@kagsa.org"
__date__ = "2023-6-6"
readme = open("README.md", "r", encoding="utf-8")
long_description = readme.read()
reqFile=open("requirements.txt", "r")
requirements = reqFile.read().split('\n')
readme.close()
reqFile.close()
setup(
name=__name__,
version=__version__,
description='PROGRAMMING LANGUAGE',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://www.kagsa.org/',
author=__author__,
author_email=__author_email__,
project_urls={
'Source': 'https://github.com/kagsa/kagsa',
'Report Bugs': 'https://github.com/kagsa/kagsa/issues',
'Download': 'https://pypi.org/project/kagsa/#files',
'Documentation': 'https://github.com/kagsa/kagsa/blob/master/README.md',
'Website' : 'https://www.kagsa.org/'
},
license='MIT',
keywords=[
'programming', 'language', 'programming language',
'kagsa', 'lang', 'kg', 'KG', 'KAGSA'
],
packages=find_packages(),
include_package_data=True,
package_data={'' : ['built_modules.py','errors.py','methods.py','parse_id.py','parse_string.py','parser.py']},
install_requires= requirements,
entry_points={
'console_scripts': [
"kagsa=kagsasrc.__main__:main",
"kg=kagsasrc.__main__:main"
]
}
)