-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (32 loc) · 1.09 KB
/
setup.py
File metadata and controls
39 lines (32 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
import pathlib
from setuptools import setup, find_packages
from BScript import __version__
VERSION = __version__
DESCRIPTION = 'BScript'
# LONG_DESCRIPTION = 'A package inspired by django model system and implemented that system for mssql via using pyodbc'
HERE = pathlib.Path(__file__).parent
# The text of the README file
README =""
# Setting up
setup(
name="BScript",
version=VERSION,
author="Mehmet Berkay Özbay",
author_email="<berkayozbay64@gmail.com>",
url="https://github.com/bilinenkisi/msorm",
description=DESCRIPTION,
packages=find_packages(),
install_requires=["requests",
"pyjsparser",
"colorama"
], # add any additional packages that
# needs to be installed along with your package. Eg: 'caer'
keywords=['python', 'BScript'],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)