-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 925 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 925 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
# -*- coding: utf-8 -*-
# Author: Grzegorz Dziegielewski
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "dotfiles",
version = "0.1",
author = "Grzegorz Dzięgielewski",
author_email = "jabbas@jabbas.eu",
description = "simple wrapper over git to manage dotfiles",
license = "GPLv3+",
keywords = "dotfiles git wrapper",
url = "http://git.jabbas.eu/dotfiles.git",
packages = find_packages(),
entry_points = { "console_scripts": ["dtf = dotfiles:main"] },
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Topic :: Utilities",
"Topic :: Software Development :: Version Control",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
],
)