-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 709 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 709 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
import os
from setuptools import setup
from nyanbar import VERSION
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "nyanbar",
version=VERSION,
author = "Andrew Gwozdziewycz",
author_email = "web@apgwoz.com",
description = ("nyanbar is a progress bar for scripts that uses the Nyan cat instead of other stuff."),
url='https://github.com/apgwoz/nyanbar',
license = "LGPL",
packages=['nyanbar'],
install_requires=[],
long_description=read('README'),
requires=[],
classifiers=[
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Environment :: Console"
]
)