-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
29 lines (26 loc) · 836 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
import os
from setuptools import setup, find_packages
version = "0.0.8"
long_description = open(f"README.md").read()
setup(
name="Folders",
version=version,
author="Sina Khalili",
url="https://github.com/SinaKhalili/Folders.py",
description="Implementation of the Folders📂 esoteric programming language, a language with no code and just folders.",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
packages = find_packages(),
py_modules = ['folders'],
entry_points={
"console_scripts": [
"Folders = folders.folders:main"
]
},
)