-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 706 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 706 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
# -*- coding: utf-8 -*-
from distutils.core import setup
try:
with open('README.md', 'r') as f:
readme = f.read()
with open('LICENSE.txt', 'r') as f:
license_ = f.read()
except:
readme = ''
license_ = ''
setup(
name='unique-id',
version='1.0.1',
packages=['unique_id'],
url='',
download_url='https://github.com/slawek87/unique-id',
license=license_,
author=u'Sławomir Kabik',
author_email='slawek@redsoftware.pl',
description='Unique-ID is a small lib to generate unique ids - string values.',
long_description=readme,
keywords=['Python Unique ID', 'Python ID', 'Python Unique string'],
install_requires=['setuptools'],
)