forked from MaurizioB/SampleBrowse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (34 loc) · 1.07 KB
/
setup.py
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from os import path
from setuptools import setup, find_packages
#from src.info import __version__, __codeurl__
_path = path.abspath(path.dirname(__file__))
with open(path.join(_path, 'README.rst')) as f:
long_desc = f.read()
info = {}
with open(path.join(_path, 'samplebrowse/info.py')) as f:
exec(f.read(), info)
setup(
name="SampleBrowse",
version=info['__version__'],
description="SampleBrowse is an audio sample browser and manager",
long_description=long_desc,
author="Maurizio Berti",
author_email="[email protected]",
url=info["__codeurl__"],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Utilities"
],
packages=['samplebrowse'],
include_package_data=True,
scripts=[
"SampleBrowse",
# "SampleBrowse.py",
],
)