-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (28 loc) · 871 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (28 loc) · 871 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 = "foxsnapshot",
version = "0.0.1",
author = "Luna Deards",
author_email = "luna@xenialinux.com",
description= ("btrfs snapshot manager made for Xenia Linux"),
license = "GPL-3",
keywords = "snapshot btrfs",
url = "https://gitlab.com/xenia-group/foxsnapshot",
packages = ['foxsnapshot'],
entry_points={
'console_scripts': [
'foxsnapshot = foxsnapshot.foxsnapshot:main',
],
},
requires=["subprocess", "sys", "argparse", "os", "time", "foxcommon"],
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Automation"
"License :: OSI Approved :: GPL-3"
],
)