-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.15 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
from setuptools import setup, find_namespace_packages
from pathlib import Path
try:
long_description = (Path(__file__).parent / 'README.md').read_text(encoding='utf-8')
except FileNotFoundError:
long_description = 'Readme missing'
setup(
name="generalbrowser",
author='Rickard "Mandera" Abraham',
author_email="[email protected]",
version="0.0.9",
description="Missing description.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'generallibrary',
'generalfile',
'generalgui',
'django',
'djangorestframework',
'dill',
'requests',
],
url="https://github.com/ManderaGeneral/generalbrowser",
license="mit",
python_requires=">=3.8, <3.10",
packages=find_namespace_packages(exclude=("build*", "dist*")),
extras_require={},
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
],
)