-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (55 loc) · 1.8 KB
/
setup.py
File metadata and controls
59 lines (55 loc) · 1.8 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
"""
Setup script for Convo Programming Language
"""
from setuptools import setup, find_packages
from pathlib import Path
# Read the README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding='utf-8')
# Read requirements
requirements = []
try:
with open('requirements.txt', 'r') as f:
requirements = [line.strip() for line in f if line.strip() and not line.startswith('#')]
except FileNotFoundError:
pass
setup(
name="convo-lang",
version="0.0.1",
author="DreadHeadHippy",
author_email="155098676+DreadHeadHippy@users.noreply.github.com",
description="A natural programming language with conversational syntax",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DreadHeadHippy/Convo",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Interpreters",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Education",
],
python_requires=">=3.11",
install_requires=requirements,
extras_require={
"discord": ["discord.py>=2.0.0"],
"dev": ["pytest>=8.0.0", "pytest-cov"],
},
entry_points={
"console_scripts": [
"convo=convo.__main__:main",
],
},
package_data={
"convo": ["*.md"],
},
include_package_data=True,
zip_safe=False,
)