1- from setuptools import setup , find_packages
1+ #!/usr/bin/env python
2+ # -*- coding: utf-8 -*-
3+
4+
5+ from setuptools import setup
6+ from codecs import open
7+ from os import path
8+ import os
9+
10+
11+ here = path .abspath (path .dirname (__file__ ))
12+ readme_path = path .join (here , 'README.md' )
13+
14+ long_description = 'See https://github.com/CalyFactory/python-jicson\n '
15+
16+
17+ if path .exists (readme_path ):
18+ with open (readme_path , encoding = 'utf-8' ) as f :
19+ long_description += f .read ()
20+
221setup (
322 name = 'jicson' ,
4- version = '1.0.0 ' ,
23+ version = '1.0.1 ' ,
524 packages = ['jicson' ],
625 author = 'jspiner' ,
726 author_email = 'jspiner@naver.com' ,
27+ classifiers = [
28+ 'Development Status :: 2 - Pre-Alpha' ,
29+ 'Topic :: Software Development :: Libraries' ,
30+ 'Programming Language :: Python :: 2' ,
31+ 'Programming Language :: Python :: 2.6' ,
32+ 'Programming Language :: Python :: 2.7' ,
33+ 'Programming Language :: Python :: 3' ,
34+ 'Programming Language :: Python :: 3.4' ,
35+ 'Programming Language :: Python :: 3.5' ,
36+ 'Programming Language :: Python :: 3.6' ,
37+ ],
38+ keywords = 'ICS iCalendar JSon calendar caldav' ,
839 url = 'http://caly.io' ,
940 description = 'Easy ics file parser' ,
1041)
0 commit comments