forked from phobologic/random_name
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 970 Bytes
/
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
import os
from setuptools import setup, find_packages
import glob
src_dir = os.path.dirname(__file__)
def read(filename):
full_path = os.path.join(src_dir, filename)
with open(full_path) as fd:
return fd.read()
if __name__ == '__main__':
setup(
name='random_name',
version='0.1.0',
author='Michael Barrett',
author_email='loki77@gmail.com',
license="New BSD license",
url="https://github.com/phobologic/random_name",
description='Simple tool for generating random names.',
long_description=read('README.rst'),
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: BSD License",
"Development Status :: 3 - Alpha"],
packages=find_packages(),
scripts=glob.glob(os.path.join(src_dir, 'scripts', '*')),
)