mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-30 09:45:53 +00:00
Fix weird styling and resource warning in setup.py
This commit is contained in:
parent
38f5dafc1c
commit
c6b23b493d
1 changed files with 5 additions and 3 deletions
8
setup.py
8
setup.py
|
|
@ -37,9 +37,7 @@ requirements = [
|
|||
|
||||
|
||||
class PrintRequirements(Command):
|
||||
|
||||
description = 'Prints minimal requirements'
|
||||
|
||||
user_options = []
|
||||
|
||||
def initialize_options(self):
|
||||
|
|
@ -53,6 +51,10 @@ class PrintRequirements(Command):
|
|||
print(requirement.replace(">", "=").replace(" ", ""))
|
||||
|
||||
|
||||
with open('README.rst') as f:
|
||||
long_description = f.read()
|
||||
|
||||
|
||||
setup(
|
||||
# General metadata
|
||||
name='vdirsyncer',
|
||||
|
|
@ -61,7 +63,7 @@ setup(
|
|||
url='https://github.com/pimutils/vdirsyncer',
|
||||
description='Synchronize calendars and contacts',
|
||||
license='MIT',
|
||||
long_description=open('README.rst').read(),
|
||||
long_description=long_description,
|
||||
|
||||
# Runtime dependencies
|
||||
install_requires=requirements,
|
||||
|
|
|
|||
Loading…
Reference in a new issue