-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.53 KB
/
setup.py
File metadata and controls
50 lines (46 loc) · 1.53 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
from setuptools import setup
metadata = {}
with open("phioncli/metadata.py", encoding='utf-8') as fp:
exec(fp.read(), metadata)
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setup(
name= 'phioncli',
version=metadata['__version__'],
author = 'sortedcord',
author_email = 'aditsuyag@gmail.com',
description= 'The command-line interface for the PHION project',
long_description=long_description,
long_description_content_type="text/markdown",
url= "https://github.com/phion-pm/cli",
project_urls={
"Bug Tracker": "https://github.com/phion-pm/cli/issues",
},
# 'Project.subdir': 'Project/subdir'
package_dir = {},
# main project, project.subdir
packages=['phioncli'],
entry_points = {},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Desktop Environment :: Window Managers"
],
install_requires = [
"loguru>=0.5.3"
],
extras_require = {
"dev": [
"pytest>=3.7",
],
},
)