-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 806 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 806 Bytes
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
#!/usr/bin/env python3
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "foxupdate",
version = "1.0.0",
author = "Luna Deards",
author_email = "luna@xenialinux.com",
description= ("Updater for Xenia."),
license = "GPL-3",
keywords = "update utility",
url = "https://gitlab.com/xenia-group/foxupdate",
packages = ["foxupdate"],
requires=["foxcommon", "tomli_w", "tomllib"],
entry_points={
'console_scripts': [
'foxupdate = foxupdate.foxupdate:main',
],
},
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Package"
"License :: OSI Approved :: GPL-3"
],
)